home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_11_04 / 1104016a < prev    next >
Encoding:
Text File  |  1993-02-03  |  236 b   |  17 lines

  1. // Listing 1 -- the header <iso646.h>
  2.  
  3. #define and        &&
  4. #define and_eq    &=
  5. #define bitand    &
  6. #define bitor    |
  7. #define compl    ~
  8. #define ne        !=
  9. #define not        !
  10. #define or        ||
  11. #define or_eq    |=
  12. #define xor        ^
  13. #define xor_eq    ^=
  14.  
  15.  
  16.  
  17.